home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2018 July / PCgo 07-2018 CD-ROM Germany.iso / nw.pak / Unnamed File 004763.unknown < prev    next >
Encoding:
Text File  |  2015-07-29  |  5.6 KB  |  21 lines

  1. WebInspector.DevicesView=function()
  2. {WebInspector.VBox.call(this);this.registerRequiredCSS("devices/devicesView.css");this.element.classList.add("devices");this._devicesHelp=this.element.createChild("div");this._devicesHelp.innerHTML=WebInspector.UIString("No devices detected. "+"Please read the <a href=\"https://developers.google.com/chrome-developer-tools/docs/remote-debugging\"> remote debugging documentation</a> "+"to verify your device is enabled for USB debugging.");this.element.createChild("div","devices-info").innerHTML=WebInspector.UIString("Click \"Try here\" button, to open the current page in the selected remote browser.");this._devicesList=this.element.createChild("div");this._devicesList.cellSpacing=0;InspectorFrontendHost.events.addEventListener(InspectorFrontendHostAPI.Events.DevicesUpdated,this._onDevicesUpdated,this);};WebInspector.DevicesView.MinVersionNewTab=29;WebInspector.DevicesView.Events={DevicesChanged:"DevicesChanged"};WebInspector.DevicesView.prototype={_onDevicesUpdated:function(event)
  3. {this._updateDeviceList((event.data));},_updateDeviceList:function(devices)
  4. {function sanitizeForId(id)
  5. {return id.replace(/[.:/\/ ]/g,"-");}
  6. function alreadyDisplayed(element,data)
  7. {var json=JSON.stringify(data);if(element.__cachedJSON===json)
  8. return true;element.__cachedJSON=json;return false;}
  9. function insertChildSortedById(parent,child)
  10. {for(var sibling=parent.firstElementChild;sibling;sibling=sibling.nextElementSibling){if(sibling.id&&sibling.id>child.id){parent.insertBefore(child,sibling);return;}}
  11. parent.appendChild(child);}
  12. function removeObsolete(validIds,section)
  13. {if(validIds.indexOf(section.id)<0)
  14. section.remove();}
  15. if(alreadyDisplayed(this._devicesList,devices))
  16. return;var newDeviceIds=devices.map(function(device){return device.id;});Array.prototype.forEach.call(this._devicesList.querySelectorAll(".device"),removeObsolete.bind(null,newDeviceIds));this._devicesHelp.hidden=!!devices.length;for(var d=0;d<devices.length;d++){var device=devices[d];var deviceSection=this._devicesList.querySelector("#"+sanitizeForId(device.id));if(!deviceSection){deviceSection=this._devicesList.createChild("div","device");deviceSection.id=sanitizeForId(device.id);var deviceHeader=deviceSection.createChild("div","device-header");deviceHeader.createChild("div","device-name");var deviceSerial=deviceHeader.createChild("div","device-serial");deviceSerial.textContent="#"+device.adbSerial.toUpperCase();deviceSection.createChild("div","device-auth");}
  17. if(alreadyDisplayed(deviceSection,device))
  18. continue;deviceSection.querySelector(".device-name").textContent=device.adbModel;deviceSection.querySelector(".device-auth").textContent=device.adbConnected?"":WebInspector.UIString("Pending authentication: please accept debugging session on the device.");var browsers=device.browsers.filter(function(browser){return browser.adbBrowserChromeVersion;});var newBrowserIds=browsers.map(function(browser){return browser.id;});Array.prototype.forEach.call(deviceSection.querySelectorAll(".browser"),removeObsolete.bind(null,newBrowserIds));for(var b=0;b<browsers.length;b++){var browser=browsers[b];var incompatibleVersion=browser.hasOwnProperty("compatibleVersion")&&!browser.compatibleVersion;var browserSection=deviceSection.querySelector("#"+sanitizeForId(browser.id));if(!browserSection){browserSection=createElementWithClass("div","browser");browserSection.id=sanitizeForId(browser.id);insertChildSortedById(deviceSection,browserSection);var browserName=browserSection.createChild("div","browser-name");browserName.textContent=browser.adbBrowserName;if(browser.adbBrowserVersion)
  19. browserName.textContent+=" ("+browser.adbBrowserVersion+")";if(incompatibleVersion||browser.adbBrowserChromeVersion<WebInspector.DevicesView.MinVersionNewTab){var warningSection=browserSection.createChild("div","warning");warningSection.textContent=incompatibleVersion?WebInspector.UIString("You may need a newer version of desktop Chrome. Please try Chrome %s  or later.",browser.adbBrowserVersion):WebInspector.UIString("You may need a newer version of Chrome on your device. Please try Chrome %s or later.",WebInspector.DevicesView.MinVersionNewTab);}else{var clickHandler=InspectorFrontendHost.openUrlOnRemoteDeviceAndInspect.bind(null,browser.id,WebInspector.targetManager.inspectedPageURL());browserSection.appendChild(createTextButton(WebInspector.UIString("Try here"),clickHandler,"",WebInspector.UIString("Inspect current page in this browser.")));}}}}},willHide:function()
  20. {InspectorFrontendHost.setDevicesUpdatesEnabled(false);},wasShown:function()
  21. {InspectorFrontendHost.setDevicesUpdatesEnabled(true);},__proto__:WebInspector.VBox.prototype};;Runtime.cachedResources["devices/devicesView.css"]="/*\n * Copyright (c) 2014 The Chromium Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can be\n * found in the LICENSE file.\n */\n.devices {\n    padding: 10px;\n}\n\n.devices-info {\n    flex: none;\n    padding-bottom: 10px;\n}\n\n.browser {\n    align-items: baseline;\n    display: flex;\n    padding: 1px;\n}\n\n.browser button {\n    white-space: nowrap;\n    flex: none;\n}\n\n.device-header {\n    align-items: baseline;\n    display: flex;\n    flex-flow: row wrap;\n    padding: 2px 0;\n}\n\n.device-name {\n    color: #222;\n    font-size: 120%;\n    font-weight: normal;\n}\n\n.device-serial {\n    color: #888;\n    font-size: 80%;\n    margin-left: 6px;\n    font-weight: normal;\n}\n\n.browser-name {\n    overflow: hidden;\n    padding-left: 20px;\n    padding-right: 10px;\n    flex: 0 1 250px;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n}\n/*# sourceURL=devices/devicesView.css */";